# Retrieves the description and the access list for the specified resource

Returns the resource model including its name, description, and supported access types for a specific RBAC-guarded resource. Use the resource name as it appears in the full resource list (e.g., 'GroupMembers', 'Users', 'Roles'). Returns ResourceNotFound if the resource does not exist. No authentication required.

Endpoint: GET /api/v1/rbac/{resource}
Version: 1.0
Security: header

## Path parameters:

  - `resource` (string, required)
    The resource of interest
    Example: "GroupMembers"

## Response 200 fields (application/json):

  - `name` (string, required)

  - `description` (string, required)

  - `actions` (array, required)

  - `actions.name` (string, required)

  - `actions.description` (string, required)

## Response 404 fields (application/json):

  - `errorCode` (string, required)
    Error code

  - `message` (string, required)
    Error message

  - `docUrl` (string)
    Link to documentation


